Welcome![Sign In][Sign Up]
Location:
Search - java t

Search list

[Game EngineGTGE_0_2_3_complete

Description: JAVA开源游戏引擎。 Golden T Game Engine (GTGE) is a cross-platform game engine written in Java. Easy to learn, simple to use, compact, and free!-JAVA open-source game engine. Golden T Game Engine (GTGE) is a cross-platform game engine written in Java.Easy to learn, simple to use, compact, and free!
Platform: | Size: 1314816 | Author: awen | Hits:

[JSP/JavaVNC4.0

Description: 原创,是和我的学生王鑫同学一起开发的模拟VNC的java软件,可以远程通信、查看远程桌面、远程通话以及远程控制! 注:VNC是AT&T公司的远程管理软件,和终端服务类似,和终端不同的地方在于终端服务连接上去是开启了一个会话,而VNC则是和当前正在登录的用户共用同一个会话。这也就是说,你可以和当前登录的用户同时操作,他所作的一切你都可以看见,反之亦然。-Original, is my students and students with Wang to develop the java simulation VNC software, remote communications, see Remote Desktop, remote calls, as well as remote control! Note: VNC is AT
Platform: | Size: 27648 | Author: 马俊 | Hits:

[JSP/Javabingyuanjianhu-java

Description: java开发的病原监护系统 加了exe 的壳子,解压后 去掉.exe后缀 可查看里面的源代码和工程文件 有问题可以联系我l i g t 120@163.com(去掉前面空格) -java pathogen monitoring system developed by the addition of the shell exe, after extracting removed. exe suffix to see inside the source code and engineering documents in question can contact me ligt 120@163.com (remove the spaces in front)
Platform: | Size: 418816 | Author: 李广 | Hits:

[OtherTinyOS

Description: 基于T i n y O S 的无线传感器网络体系结构 无线传感器网络WSN(Wireless Sensor Network) 由部署在监测区域内大量廉价的传感器节点组成,通过 无线通信方式形成multi2hop 自组织的网络系统,其目的是协作地感知、采集和处理网络覆盖区域中感知 对象的信息,并发送给观察者。本文从分析无线传感器节点Mica 和其上运行的操作系统TinyOS 出发, 着重描述无线传感器网络节点应用程序体系结构和消息通信机制。 -T iny OS-based wireless sensor network architecture, wireless sensor networks WSN (Wireless Sensor Network) deployed in the region to monitor a large number of low-cost sensor nodes through wireless communications multi2hop formed self-organized network system with the aim of collaboration to Perception, collection and processing network coverage area perceptual object information, and send observers. This article from the analysis of wireless sensor nodes Mica and its running on TinyOS operating system, the focus on wireless sensor network nodes to describe the application architecture and message communication mechanism.
Platform: | Size: 346112 | Author: ge | Hits:

[JSP/JavaLogistic

Description: 采用java三层构架技术开发的U/T 网络物流系统实现了对商品库存信息,供应商信息,商品信息,入库商品信息,出库商品信息的便捷管理。-Three-tier architecture using java technology development of U/T Network logistics system for commodity inventory information, supplier information, commodity information, commodity information storage, a database of goods and convenient information management.
Platform: | Size: 922624 | Author: cf | Hits:

[JSP/JavaBarCodeReader

Description: 同java写的一个jar文件,可以读取2到5间隔的条形码,在这个方面还是空白-I looked for a Java Component to read a Interleaved 2 of 5 barcode and didn t find. So I did it. Eu procurei por um componente Java para a leitura de códigos de barra 2 int 5 e nã o encontrei. Entã o eu fiz.
Platform: | Size: 9216 | Author: sun wenlong | Hits:

[Compress-Decompress algrithmsCRMforcompany

Description: 本系统基本完善了CRM管理系统的各个模块,只要稍加修改就能满足大中型企业的需求。-sorry,I don t know how to discription this CRM project in English!
Platform: | Size: 12853248 | Author: gl | Hits:

[ELanguageCMM

Description: 这个语法分析器用到的是自顶向下的递归调用的方法,根据Cminus语言的文法规则 的BNF范式编写递归调用的代码,parse方法是程序的入口,它调用的stmt_sequence完成整个语法分析工作,stmt_sequence背后是12个互相调用的方法,它本身也在语法分析的过程中被调用到。 每个方法在最后会返回一个构造好的节点DefaultMutableTreeNode节点t给调用它的方法,然后调用它的方法用这个返回的节点继续构造,最后语法分析完成后会返回一棵完全构造好了的树节点,然后将这个树节点作为根节点生成一个树控件JTree显示到窗体程序上 -CMM  parser
Platform: | Size: 141312 | Author: 文龙 | Hits:

[Audio programJMAC

Description: It is a Java implementation of Monkey s Audio Compression decoder. JMAC is a Java library that decodes, converts and plays Monkey s Audio files (.MAC, .APL, .APE) in real time. JMAC doesn t need JMF. It runs under J2SE.
Platform: | Size: 1459200 | Author: Kan | Hits:

[Linux-Unixofdm-tge

Description: OFDM程序,这么安排矩阵的目的是为了构造共轭对称矩阵 共轭对称矩阵的特点是 在ifft/fft的矢量上 N点的矢量 在0,N/2点必须是实数 一般选为0 1至N/2点 与 (N/2)+1至N-1点关于N/2共轭对称- BPSK simulation using a carrier cosine wave with ISI clc close all clear all figure(1) n=160 for i=1:n data(i)= 2*round(rand)-1 end create modulated BPSK signal first expand the bit stream exdata=[] for i=1:length(data) for rep=1:5 exdata= [exdata data(i)] end end ts=.1 t=1:ts:80.9 carrier=cos(pi*t) multiply expanded bitstream by cosine wave with carrier frequency this is the BPSK that is to be transmitted over the channel bpsk=carrier.*exdata bpsk=[bpsk(length(bpsk)-1) bpsk(length(bpsk)) bpsk] plot(bpsk) generating the noise p=rand(1,800)*2*pi p=rand*2*pi snr=10 r=sqrt(-1*(1/snr*log(1- rand))) no = 5*(r.* exp(j*p)) no = (r.* exp(j*p)) value of alpha al=rand+j*rand al=1 Spreading channel with the alpha as the variable for k=5:5:795 for l = 1:5 al=round(rand)+j*round(rand) rec(k+l)=bpsk(k+l)+al*bpsk(k-5+l) end end rxdata=rec+ no begin demodulation first multiply recie
Platform: | Size: 6146048 | Author: 卞敏捷 | Hits:

[JSPJAVAProgressBar

Description: 一个功能强大的Java多线程下载器 欢迎大家的光临 促进大家的学习交流 希望对大家有点帮助-Promiss Don t Come Easy Very Good ProgressBar
Platform: | Size: 4096 | Author: 刘勇平 | Hits:

[Documentsshop

Description: 有完整的毕业设计所需的文件和代码 没什么说的了,功能太强大-i can t do it !
Platform: | Size: 2206720 | Author: hu | Hits:

[JSP/Javabayes

Description: 数据挖掘聚类算法:bayes源代码,使用JAVA语言实现-data mining clustering algorithm
Platform: | Size: 231424 | Author: liuchunju | Hits:

[JSP/JavaMySQL.and.Java.Developers.Guide

Description: The primary goal of MySQL and Java Developer’s Guide is to provide a comprehensive approach to writing code from a Java application to a MySQL database using the industry standard: JDBC. As you will see later in this Introduction, the chapter titles indicate what area of database connectivity and manipulation they cover. The chapters are ordered to reflect the JDBC specification, but we aren’t here to simply describe the specification.
Platform: | Size: 2411520 | Author: Quang Truong | Hits:

[CommunicationDijkstra-althorim

Description: 这是一个基于JAVA实现的点对点(S-T)Dijkstra算法的改进。用于求两点间的所有最短路径。-this si a althorim named Dijkstra used for router
Platform: | Size: 3072 | Author: 肖明 | Hits:

[JSP/Javat

Description: Java Thread code for animation
Platform: | Size: 1024 | Author: Henry | Hits:

[Otheradc

Description: t after checking your files. If you do not want to upload source code, you
Platform: | Size: 276480 | Author: Lenin | Hits:

[JSP/JavaSocket

Description: 用Java Socket完成如下功能:建立客户端和服务器端通讯,服务器端地址为本地端口自拟。两端以TCP形式通讯,假设客户端Class叫Client,服务器端Class叫Server。当运行 java Client Hello时,服务器端能接受客户发来的Hello字符并打印”Receive Hello”然后返回给客户端“How r u doing”字符串 客户端收到后打印”Received How are you doing”. 此时服务器端服务始终运行并未停止并等待其他Socket连接(客户端运行一次可以停止),直到客户运行 java Client Bye时 服务器端收到”Bye”并打印”I don’t wanna die”后 服务器停止运行。-Java Socket complete with the following functions: the establishment of client and server communications, server-side address of the local port from be. TCP in the form of communication at both ends, assuming that the client Class called Client, server-side Class called Server. Java Client Hello When running, the server can accept Hello Guest sent characters and print the " Receive Hello" and then go back to the client " How ru doing" string after the client received print " Received How are you doing" . This When running server-side service is not always stop and wait for the other Socket connection (the client can stop a run), until the customer is running java Client Bye received at the server-side " Bye" and print " I don' t wanna die" after the server to stop run.
Platform: | Size: 32768 | Author: wangdan | Hits:

[Other Web CodeAjax

Description: ajax in java class file
Platform: | Size: 4220928 | Author: bala | Hits:

[AlgorithmAHP

Description: AHP 层次分析法 层次分析法概述。层次分析法(Analytic Hierarchy Process简称AHP)是美国运筹学家T. L. Saaty教授于70年代初期提出的, AHP是对定性问题进行定量分析的一种简便、灵活而又实用的多准则决策方法。它的特点是把复杂问题中的各种因素通过划分为相互联系的有序层次,使之条理化,根据对一定客观现实的主观判断结构(主要是两两比较)把专家意见和分析者的客观判断结果直接而有效地结合起来,将一层次元素两两比较的重要性进行定量描述。而后,利用数学方法计算反映每一层次元素的相对重要性次序的权值,通过所有层次之间的总排序计算所有元素的相对权重并进行排序。该方法自1982年被介绍到我国以来,以其定性与定量相结合地处理各种决策因素的特点,以及其系统灵活简洁的优点,迅速地在我国社会经济各个领域内,如能源系统分析、城市规划、经济管理、科研评价等,得到了广泛的重视和应用-The Analytic Hierarchy Process (AHP) is a structured technique for dealing with complex decisions. Rather than prescribing a "correct" decision, the AHP helps the decision makers find the one that best suits their needs and their understanding of the problem
Platform: | Size: 2703360 | Author: billten | Hits:
« 1 2 3 4 56 7 8 9 10 ... 24 »

CodeBus www.codebus.net